home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1998 #4 / Amiga Plus CD - 1998 - No. 4.iso / pd / tools / ifx / update < prev    next >
Text File  |  1998-01-02  |  2KB  |  79 lines

  1. ; IFX V2.00
  2. ;
  3.  
  4. ;START
  5.  
  6. (welcome "About to install\nIFX v2.1\n(input effects)\n\n© Dobes Vandermeer\n")
  7. (set @app-name "IFX")
  8. (set @default-dest "SYS:")
  9. (if (askbool
  10.       (prompt "Okay to copy\nexecutable to dir\nSYS:WBStartup?")
  11.       (help "Press yes to copy,\nno to select another dir.")
  12.       (default 1)
  13.       )
  14.    (set #bindir "SYS:WBStartup")
  15.    (set #bindir 
  16.       (askdir
  17.          (prompt "Select directory for executable.\n")
  18.          (help "Since you didn't want\nto install to the\ndefault directory,\nPlease select another.\n" 
  19.                "(NIL: will send it all to hell)")
  20.          (default "SYS:Tools/Commodities")
  21.          )
  22.       )
  23.    )
  24.    
  25. (copyfiles 
  26.    (prompt "Copying executable to:\n" #bindir)
  27.    (help "Make sure all boxes are checked, \nand select proceed.")
  28.    (source "")
  29.    (choices "IFX" "IFX.info")
  30.    (dest #bindir)
  31.    )
  32.  
  33. (complete 25)
  34.  
  35. (complete 48)
  36. (if (askbool
  37.       (prompt "Okay to copy\n\"IFXNote\" command to dir\nSYS:Utilities?")
  38.       (help "This utility adds a comment to every\nsoundfile that is an\nIFX id, allowing you to\nquickly determine which sound files are in use.")
  39.       (default 1)
  40.       )
  41.    (set #comdir "SYS:Utilities")
  42.    (set #comdir
  43.       (askdir
  44.          (prompt "Select directory for executable.\n")
  45.          (help "Since you didn't want\nto install to the\ndefault directory,\nPlease select"
  46.                "another.\n")
  47.          (default "SYS:Utilities")
  48.          )
  49.       )
  50.    )
  51.  
  52. (copyfiles
  53.    (source "")
  54.    (pattern "(IFXNote|IFXNote.info)")
  55.    (dest #comdir)
  56.    )
  57.  
  58. (complete 66)
  59. (set #docdir
  60.    (askdir
  61.       (prompt "Where would you like me\nto install the documentation?")
  62.       (help "Find the directory where\nyou would like\ntosave the amigaguide\ndocumentation, and press\nProceed.\n")
  63.       (default "SYS:Docs")
  64.       )
  65.    )
  66.  
  67. (copyfiles
  68.    (source "")
  69.    (pattern "IFX.guide#?")
  70.    (dest #docdir)
  71.    )
  72.  
  73. (complete 100)
  74.  
  75. (exit "Installation of IFX complete.\n\nPlease reboot to test IFX.\n\nDocumentation can be found \nin " #docdir " and the \nexecutable is in " #bindir " and the prefs editor is in\n" #prefsdir 
  76. "\n\nlook out for sounds sets from the same place you got IFX!\n"
  77. (quiet))
  78.  
  79.